home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / ARCHIVERS / BEGINNER / TARZ / !tarZ / ok < prev    next >
Text File  |  1999-04-24  |  235b  |  20 lines

  1. BEGIN {
  2.       y = 1;
  3.       char x[ 128 ];
  4.       }
  5.  
  6. /' /
  7.    {
  8.    if (y==1)
  9.       {
  10.       x=$1;
  11.       y=0;
  12.       }
  13.    else
  14.       x=substr($1,2);
  15.  
  16.    if ($3!="Directory")
  17.       printf("settype %s %s \n",x,$3);
  18.    }
  19.  
  20. END {printf("*quit");}